home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
C and C++
/
Commun⁄Network
/
RevRdist Folder
/
Local #includes
/
C_config.h
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-09-06
|
354 b
|
18 lines
|
[
TEXT/KAHL
]
/*
* C_config.h - compiler dependent options
*/
#ifndef _H_c_config
#define _H_c_config
/* defns for LSC */
typedef long Longint; /* pascal LONGINT type */
typedef short Integer; /* pascal INTEGER type */
typedef void (*vProcPtr)(...);
typedef Longint (*lProcPtr)(...);
typedef Integer (*iProcPtr)(...);
#ifndef nil
#define nil 0l
#endif
#endif